diff options
Diffstat (limited to 'src/pages/article/[slug].tsx')
| -rw-r--r-- | src/pages/article/[slug].tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/article/[slug].tsx b/src/pages/article/[slug].tsx index b9c0021..f43c9ee 100644 --- a/src/pages/article/[slug].tsx +++ b/src/pages/article/[slug].tsx @@ -30,7 +30,7 @@ const SingleArticle: NextPageWithLayout<ArticleProps> = ({ post }) => { featuredImage, intro, seo, - subjects, + topics, thematics, title, } = post; @@ -137,7 +137,7 @@ const SingleArticle: NextPageWithLayout<ArticleProps> = ({ post }) => { className={styles.body} dangerouslySetInnerHTML={{ __html: content }} ></div> - <PostFooter subjects={subjects} /> + <PostFooter topics={topics} /> <Sidebar position="right"> <Sharing title={title} excerpt={intro} /> </Sidebar> |
